home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / disk / mt220.zip / SOURCE.ZIP / COMPILE.TXT next >
Text File  |  1997-02-11  |  823b  |  26 lines

  1. I've used Borland C++ 3.1 for mt.cpp and TASM 3.2 for mtmem.asm. Linking is done
  2. with TLINK 7.00 and EXE2BIN is used to generate mt.com. I think mtmem.asm should
  3. assemble okay with MASM.  mt.cpp will probably need some modification to compile
  4. with something else.  I've supplied my Borland IDE .dsk and .prj files, for what
  5. they're worth.
  6.  
  7. In addition to a compiler and assembler, you'll also need AMIS - Ralf Brown's
  8. Alternate Multiplex Interrupt Specification. The latest version is available at,
  9. for example:
  10.  
  11. ftp://ftp.simtel.net/pub/simtelnet/msdos/asmutl/amisl092.zip
  12.  
  13. You need to assemble amis.asm first:
  14.  
  15. tasm/t/z /d__TINY__ amis
  16.  
  17. then assemble mtmem.asm (you'll need amis.mac available):
  18.  
  19. tasm/t/z mtmem
  20.  
  21. and finally link it:
  22.  
  23. tlink/t/x mtmem amis
  24.  
  25. Hopefully you'll end up with mtmem.com.
  26.